home *** CD-ROM | disk | FTP | other *** search
/ Georgia Wildfire Prevention / Georgia Wildfire Prevention.iso / mac / media / dirs / BackUp / GoodBad.dir / 00012_Script_12 < prev    next >
Text File  |  2002-10-15  |  376b  |  24 lines

  1. property evaled
  2.  
  3. global ctrlobj 
  4.  
  5. on beginsprite me
  6.   evaled=0
  7. end
  8.  
  9. on exitframe me
  10.   if not(evaled) then
  11.     evaled=1
  12.     his=ctrlobj.history
  13.     f1=0
  14.     f2=0
  15.     repeat with i in his
  16.       if i.frame="good" then f1=1
  17.       if i.frame="bad" then f2=1
  18.     end repeat
  19.     if f1 and f2 then sendsprite(10,#blink_on,Void,360)
  20.   end if
  21.   go the frame
  22. end
  23.  
  24.